home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / C_QNA.ARJ / PATHPROB.BCP < prev    next >
Text File  |  1991-04-01  |  1KB  |  25 lines

  1. QUESTION:  I keep getting the error message "Couldn't find [utilityname]"
  2.            and I know the utility is available. What's wrong?
  3.  
  4. ANSWER:   There are two things that can cause this problem:
  5.  
  6.   (1) User has TC++ and BC++ on their meachine and has inserted the BC++
  7.       directory (\BORLANDC\BIN) into their system path after the TC++
  8.       directory (\TC\BIN;\BORLANDC\BIN)... seems to be a benign thing to
  9.       do..... However this will result in the error message "Couldn't find
  10.       TASM.EXE" in cases where an ASM module appears in a project file.
  11.       TASM.EXE is, in fact, in both \BORLANDC\BIN and \TC\BIN and correct
  12.       paths appear in Options-Directories.
  13.  
  14.       Removing the TC++ path fragment or putting the BC++ path first
  15.       corrects the problem.
  16.  
  17.   (2) User has both BC++ and the Software Development ToolKit (SDK) and
  18.       has inserted the BC++ path after the SDK path (\WINDEV;\BORLANDC\BIN)
  19.       which seems like a benign thing to do.... however, this will result
  20.       in the error message "Couldn't find RC.EXE" even though RC.EXE
  21.       appears in both the SDK directory and the BC++ directory.
  22.  
  23.       Removing the SDK path or putting the BC++ path first in the system
  24.       path corrects the problem.
  25.